home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Utilities
/
Programming
/
EnterAct 3.5
/
Drag_on Modules
/
hAWK programs
/
$FileDates
< prev
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-09-18
|
273 b
|
11 lines
|
[
TEXT/KEEN
]
#$FileDates : print mod date of files
#Typically use the "MFS selected files" input option
#with "Show stdout" selected.
BEGIN {
print "Full pathname • yr:mo:day:hr:min:sec"
for (i = 1; i < ARGC; ++i)#note ARGV[0] is just "hAWK"
print ARGV[i], "•", fdate(ARGV[i])
}